home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / libx11 / include / x11 / xaw / smeline.h < prev    next >
C/C++ Source or Header  |  1999-01-01  |  2KB  |  76 lines

  1. /*
  2.  * $XConsortium: SmeLine.h,v 1.3 89/12/11 15:20:19 kit Exp $
  3.  *
  4.  * Copyright 1989 Massachusetts Institute of Technology
  5.  *
  6.  * Permission to use, copy, modify, distribute, and sell this software and its
  7.  * documentation for any purpose is hereby granted without fee, provided that
  8.  * the above copyright notice appear in all copies and that both that
  9.  * copyright notice and this permission notice appear in supporting
  10.  * documentation, and that the name of M.I.T. not be used in advertising or
  11.  * publicity pertaining to distribution of the software without specific,
  12.  * written prior permission.  M.I.T. makes no representations about the
  13.  * suitability of this software for any purpose.  It is provided "as is"
  14.  * without express or implied warranty.
  15.  *
  16.  * M.I.T. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
  17.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL M.I.T.
  18.  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19.  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  20.  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 
  21.  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  *
  23.  */
  24.  
  25. /*
  26.  * SmeLine.h - Public Header file for SmeLine object.
  27.  *
  28.  * This is the public header file for the Athena SmeLine object.
  29.  * It is intended to be used with the simple menu widget.  
  30.  *
  31.  * Date:    April 3, 1989
  32.  *
  33.  * By:      Chris D. Peterson
  34.  *          MIT X Consortium 
  35.  *          kit@expo.lcs.mit.edu
  36.  */
  37.  
  38. #ifndef _SmeLine_h
  39. #define _SmeLine_h
  40.  
  41. #include <X11/Xaw/Sme.h>
  42. #include <X11/Xmu/Converters.h>
  43.  
  44. /****************************************************************
  45.  *
  46.  * SmeLine Object
  47.  *
  48.  ****************************************************************/
  49.  
  50. /* Menu Entry Resources:
  51.  
  52.  Name             Class        RepType        Default Value
  53.  ----             -----        -------        -------------
  54.  callback            Callback        Pointer        NULL
  55.  destroyCallback     Callback        Pointer        NULL
  56.  height             Height        Dimension    0
  57.  sensitive         Sensitive        Boolean        True
  58.  width             Width        Dimension    0
  59.  x             Position        Position    0n
  60.  y             Position        Position    0
  61.  
  62. */
  63.  
  64. #define XtCLineWidth "LineWidth"
  65. #define XtCStipple "Stipple"
  66.  
  67. #define XtNlineWidth "lineWidth"
  68. #define XtNstipple "stipple"
  69.  
  70. typedef struct _SmeLineClassRec*    SmeLineObjectClass;
  71. typedef struct _SmeLineRec*            SmeLineObject;
  72.  
  73. extern WidgetClass smeLineObjectClass;
  74.  
  75. #endif /* _SmeLine_h */
  76.